@font-face {
    font-family: 'Tajawal';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');
}

.font-tajawal {
    font-family: 'Tajawal', sans-serif;
}

.font-geist-mono {
    font-family: 'Geist Mono', monospace;
}

body {
    font-family: 'Tajawal', sans-serif;
    scroll-behavior: smooth;
}

/* Progress Circle Animation */
.progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.progress-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.progress-ring-circle-bg {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-linecap: round;
    transform-origin: center;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke: rgba(255, 255, 255, 0.7);
    stroke-linecap: round;
    transform-origin: center;
    transform: rotate(-90deg);
    stroke-dasharray: 565.48;
    stroke-dashoffset: 237.5; /* Calculated for 58% progress */
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-percentage {
    display: block;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 4px;
}

.progress-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Responsive fixes */
@media (max-width: 768px) {
    .progress-circle {
        width: 160px;
        height: 160px;
    }
    
    .progress-ring {
        width: 160px;
        height: 160px;
    }
    
    .progress-ring-circle, .progress-ring-circle-bg {
        r: 72;
        cx: 80;
        cy: 80;
    }
    
    .progress-percentage {
        font-size: 28px;
    }
    
    .progress-label {
        font-size: 12px;
    }
}
